home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr05 / mswlogo3.zip / MSWLOGO.ZIP / LOGOLIB.ZIP / LISTTOAR < prev    next >
Text File  |  1991-08-29  |  301b  |  15 lines

  1. to listtoarray :list [:origin 1]
  2. local "array
  3. make "array (array count :list :origin)
  4. listtoarray1 :list :origin
  5. output :array
  6. end
  7.  
  8. to listtoarray1 :list :index
  9. if emptyp :list [stop]
  10. setitem :index :array first :list
  11. listtoarray1 bf :list :index+1
  12. end
  13.  
  14. bury [listtoarray listtoarray1]
  15.